body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  filter: brightness(100%);
  background-image: url("../img/reset password.svg");
  background-size: cover;
}

.container {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
}

.logo img {
  width: 80%;
  max-width: 180px;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  color: #555;
  margin-bottom: 50px;
}

.input-group {
  margin-bottom: 30px;
}

input[type="email"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

input[type="email"]:focus {
  border-color: #ae0057;
  outline: none;
}

.reset-button,
.signin-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  background-color: #ae0057;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.signin-button {
  background-color: #6c757d;
}

.reset-button:hover,
.signin-button:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  .logo img {
    width: 60%;
  }

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .input-group {
    margin-bottom: 20px;
  }

  input[type="email"] {
    padding: 10px;
  }

  .reset-button,
  .signin-button {
    padding: 10px;
    font-size: 14px;
  }
}
